Method ComputedFrom(Expression<Func<TProps, TProp>>)
Computed field from other fields.
builder.Property(p => p.TotalPrice)
.ComputedFrom(p => p.Quantity * p.Price);
public IPropertyMigrationBuilder<TProps, TProp> ComputedFrom(Expression<Func<TProps, TProp>> expression)